home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C ++ / Applications / TimGA 1.2.1 / .h / CMyCaption.h < prev    next >
Encoding:
Text File  |  1997-07-16  |  554 b   |  21 lines  |  [TEXT/CWIE]

  1. // ===========================================================================
  2. //    CMyCaption.h         ©1995-97 Timo Eloranta        All rights reserved.
  3. // ===========================================================================
  4. //    A subclass of LCaption which uses TETextBox for drawing just like
  5. //  LCaption did before this changed in CW7...
  6.  
  7. #pragma once
  8.  
  9. #include <LCaption.h>
  10. #include <URegistrar.h>
  11.  
  12. class    CMyCaption : public LCaption {
  13. public:
  14.     enum { class_ID = 'mCap' };
  15.  
  16.                         CMyCaption( LStream    *inStream);
  17.  
  18. protected:
  19.     virtual void        DrawSelf();
  20. };
  21.